home *** CD-ROM | disk | FTP | other *** search
/ Mission 3 / Mission 3.zip / Mission 3.iso / vollvers / adamaslg / ovl.src / main.c < prev    next >
C/C++ Source or Header  |  1998-12-18  |  330b  |  18 lines

  1. #include "extern.h"
  2.  
  3. BASPAG *_BasPag;
  4. int errno;
  5.  
  6. /* 
  7.     This dummy procedure takes care that everything is linked together.
  8.     This will be done, by include the export-table which includes the
  9.     outside callable functions.
  10.     */
  11. void main(void)
  12. {
  13. #pragma warn -aus;
  14.  
  15. extern char init_table[];
  16. char *ptr = init_table;
  17. }
  18.